home *** CD-ROM | disk | FTP | other *** search
- head 1.3;
- branch ;
- access ;
- symbols beta10:1.2;
- locks death:1.3;
- comment @ * @;
-
-
- 1.3
- date 93.04.04.23.45.01; author death; state Exp;
- branches ;
- next 1.2;
-
- 1.2
- date 93.01.10.15.08.40; author death; state Exp;
- branches ;
- next 1.1;
-
- 1.1
- date 92.07.26.14.00.14; author death; state Exp;
- branches ;
- next ;
-
-
- desc
- @Initial revision of this view
- @
-
-
- 1.3
- log
- @Sun Apr 4 23:45:00 PDT 1993
- @
- text
- @
- /* Generated by Interface Builder */
-
- /*
- This is a simple view that implements a percent-complete indicator. It looks and
- behaves just like the indicator on NeXT's Processes window, or the one in the
- Installer.app application. The caller gives it a number that constitutes the 'goal', and
- then updates the view whenever it moves closer or further away from the goal. The
- circle displayed on the screen reflects these changes.
- 92.06.21 djb
- */
-
- #import <appkit/View.h>
- #import "common.h"
- @@interface ProgressIndicator:View
- {
- Boolean active;
- Real numUnits;
- Real CurrentValue;
- }
-
- - drawSelf:(const NXRect *)rects :(int)rectCount;
- - init;
- - ActivateWithGoal: (Real) count;
- - Deactivate;
- - IncrementBy: (Real) units;
- - SetTo: (Real) units;
- @@end
- @
-
-
- 1.2
- log
- @Sun Jan 10 15:08:39 PST 1993
- @
- text
- @@
-
-
- 1.1
- log
- @Initial revision
- @
- text
- @@
-